home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Total Network Tools 2002
/
NextStepPublishing-TotalNetworkTools2002-Win95.iso
/
Archive
/
Web Server
/
PHP.EXE
/
pear
/
DB
/
tests
/
mysql
/
connect.inc
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2000-12-13
|
157 b
|
8 lines
<?php
require_once "DB.php";
$dbh = DB::connect("mysql://localhost/test");
if (DB::isError($dbh)) {
die("connect.inc: ".$dbh->getMessage());
}
?>